home *** CD-ROM | disk | FTP | other *** search
/ Carousel / CAROUSEL.cdr / mactosh / utilprn / hpdeskje.sit / HPDJet ƒ / common_mac_includes.h next >
Text File  |  1989-04-02  |  2KB  |  49 lines

  1. /* 02.04.1989  amn  (latest edit) */
  2.  
  3. /* common_mac_includes.h  -  '#include's Mac OS headers needed by every source file. */
  4.  
  5. /* The Lightspeed C Mac header files needed in every source file of our driver */
  6. /* are included in dependency order. */
  7.  
  8. /* Authors:  Ari Mujunen (amn@hutcs.hut.fi) and Olli Arnberg (oar@hutcs.hut.fi). */
  9. /* Copyright Ari Mujunen, Olli Arnberg 1989. */
  10. /* You may redistribute the driver (=printer resource file, source files, */
  11. /* documentation file(s), and the file 'Copyright and Source Offer') */
  12. /* only _non-commercially_ and _in its entirety_. */
  13. /* See the file 'Copyright and Source Offer' and/or documentation for details. */
  14. /* Acknowledgements:  Special thanks to Mr. Earle R. Horton for his 'Daisy' */
  15. /* daisywheel printer driver and its source code published in 'MacTutor', Nov-Dec 1987. */
  16. /* This driver served as a basis and inspiration for our work.  It also */
  17. /* proofed that a Macintosh printer driver can be done despite the lack of */
  18. /* documentation from Apple. */
  19.  
  20. /* Change history: */
  21. /* Version  When        Who      Why */
  22. /* 2.0      12.11.1988  amn      Original rewrite. */
  23. /* 2.1      02.04.1989  amn,oar  Released version. */
  24.  
  25.  
  26. /* Stand-alone: */
  27. #include <MacTypes.h>
  28.  
  29. /* Need 'MacTypes.h': */
  30. #include <MemoryMgr.h>
  31. #include <OSUtil.h>
  32. #include <QuickDraw.h>
  33. #include <EventMgr.h>
  34. #include <FontMgr.h>
  35. #include <FileMgr.h>
  36.  
  37. /* Needs 'OSUtil.h': */
  38. #include <DeviceMgr.h>
  39.  
  40. /* Need 'QuickDraw.h': */
  41. #include <WindowMgr.h>
  42. #include <TextEdit.h>
  43.  
  44. /* Needs 'MacTypes.h', 'WindowMgr.h', 'TextEdit.h': */
  45. #include <DialogMgr.h>
  46.  
  47. /* Needs 'DialogMgr.h': */
  48. #include <PrintMgr.h>
  49.